func time.appendInt

41 uses

	time (current package)
		format.go#L418: func appendInt(b []byte, x int, width int) []byte {
		format.go#L520: 	b = appendInt(b, nanosec, 9)
		format.go#L564: 			buf = appendInt(buf, int(m0), 0)
		format.go#L567: 		buf = appendInt(buf, int(m1), wid)
		format.go#L569: 		buf = appendInt(buf, int(m2), 9)
		format.go#L584: 	buf = appendInt(buf, year, 0)
		format.go#L591: 		buf = appendInt(buf, int(month), 0)
		format.go#L594: 	buf = appendInt(buf, day, 0)
		format.go#L596: 	buf = appendInt(buf, hour, 0)
		format.go#L598: 	buf = appendInt(buf, minute, 0)
		format.go#L600: 	buf = appendInt(buf, second, 0)
		format.go#L602: 	buf = appendInt(buf, t.Nanosecond(), 0)
		format.go#L711: 			b = appendInt(b, y%100, 2)
		format.go#L713: 			b = appendInt(b, year, 4)
		format.go#L720: 			b = appendInt(b, int(month), 0)
		format.go#L722: 			b = appendInt(b, int(month), 2)
		format.go#L729: 			b = appendInt(b, day, 0)
		format.go#L734: 			b = appendInt(b, day, 0)
		format.go#L736: 			b = appendInt(b, day, 2)
		format.go#L744: 			b = appendInt(b, yday, 0)
		format.go#L746: 			b = appendInt(b, yday, 3)
		format.go#L748: 			b = appendInt(b, hour, 2)
		format.go#L755: 			b = appendInt(b, hr, 0)
		format.go#L762: 			b = appendInt(b, hr, 2)
		format.go#L764: 			b = appendInt(b, min, 0)
		format.go#L766: 			b = appendInt(b, min, 2)
		format.go#L768: 			b = appendInt(b, sec, 0)
		format.go#L770: 			b = appendInt(b, sec, 2)
		format.go#L799: 			b = appendInt(b, zone/60, 2)
		format.go#L804: 				b = appendInt(b, zone%60, 2)
		format.go#L812: 				b = appendInt(b, absoffset%60, 2)
		format.go#L829: 			b = appendInt(b, zone/60, 2)
		format.go#L830: 			b = appendInt(b, zone%60, 2)
		format_rfc3339.go#L23: 	b = appendInt(b, year, 4)
		format_rfc3339.go#L25: 	b = appendInt(b, int(month), 2)
		format_rfc3339.go#L27: 	b = appendInt(b, day, 2)
		format_rfc3339.go#L33: 	b = appendInt(b, hour, 2)
		format_rfc3339.go#L35: 	b = appendInt(b, min, 2)
		format_rfc3339.go#L37: 	b = appendInt(b, sec, 2)
		format_rfc3339.go#L56: 	b = appendInt(b, zone/60, 2)
		format_rfc3339.go#L58: 	b = appendInt(b, zone%60, 2)